home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / PMGRacing.swf / scripts / DefineButton2_172 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2001-07-07  |  737 b   |  33 lines

  1. on(press){
  2.    tellTarget("/quarterview")
  3.    {
  4.       gotoAndStop(3);
  5.       tellTarget("/solidwire")
  6.       {
  7.          gotoAndStop("hotrod side");
  8.          play();
  9.          tellTarget("/meter")
  10.          {
  11.             gotoAndPlay(2);
  12.          }
  13.          tellTarget("/stats_hotrod")
  14.          {
  15.             play();
  16.             tellTarget("/stats_hummer")
  17.             {
  18.                gotoAndStop(1);
  19.                tellTarget("/stats_hovercraft")
  20.                {
  21.                   gotoAndStop(1);
  22.                   tellTarget("/stats_buggy")
  23.                   {
  24.                      gotoAndStop(1);
  25.                   }
  26.                   car = "hotrod";
  27.                }
  28.             }
  29.          }
  30.       }
  31.    }
  32. }
  33.